home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
utils
/
exec33a.arj
/
MAKEPAS
< prev
next >
Wrap
Text File
|
1992-12-21
|
464b
|
21 lines
# sample makefile for EXTEST - Turbo Pascal, Tasm, and Borland Make
PC=tpc
OPT=/$D+ /$F- /V
ASM=tasm /Zi /MX /W /DPASCAL
extest.exe: extest.pas checkpat.tpu exec.tpu
$(PC) extest $(OPT) /GP /M
spawnp.obj: spawn.asm
$(ASM) spawn,$*;
checkpap.obj: checkpat.asm
$(ASM) /DFARCALL checkpat,$*;
checkpat.tpu: checkpat.pas checkpat.h checkpap.obj
$(PC) checkpat $(OPT)
exec.tpu: exec.pas checkpat.tpu spawnp.obj
$(PC) exec $(OPT)